1
Style IssuesRelated to C++
mous2_anm
2
Structured Format
//Program displays a message on-screen
//Note program format
#include <iostream.h>
int main(void)
{
cout<< “I will be a C++ expert!”;
return 0;
}
3
Freeform Style
//Program displays a message on_screen  //Noteprogram format
 #include <iostream.h> int main(void) {cout<<“I willbe a C++ expert!”; return 0;}
bonk
4
Case Sensitivity
if (netpay > grosspay)
If (NetPay > GrossPay)
IF (NETPAY > GROSSPAY)
5
Comments
// a comment at the beginning should state your name
#include <iostream.h>
int main(void)
{
cout << “Hi!”;    // message to user
return 0;  // terminate main and return integer 0
}
/*  this older style of commenting  wraps around thescreen until the terminating symbol is typed. */